﻿/* 1. Main Navbar Container */
#navbar {
    position: sticky; /* Makes it stick to the top */
    top: 0;
    left: 0;
    width: 100%;
    background-color: var(--white); /* White background */
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 25px 5%; /* Padding */
    box-shadow: 0 2px 10px rgba(0,0,0,0.1); /* Subtle shadow */
    z-index: 1000;
    height: 100px; /* Fixed height for consistency */
    box-sizing: border-box;
    border-bottom: 10px solid #5B1A16;
}

/* Logo */
.logo img {
    height: 90px; /* Adjust logo height */
    width: auto;
    display: block;
}

/* Navigation Links List */
.nav-links {
    display: flex;
    list-style: none;
    gap: 30px; /* Space between items */
    align-items: center;
    margin: 0;
    padding: 0;
}

    /* Standard Links & Buttons */
    .nav-links a {
        text-decoration: none;
        color: var(--text-dark);
        font-weight: 600;
        font-size: 0.95rem;
        text-transform: uppercase;
        transition: color 0.3s ease;
        position: relative;
    }

        .nav-links a:hover {
            color: var(--primary-color);
        }

/* Button Style */
.btn-nav {
    background-color: var(--primary-color);
    color: var(--white) !important;
    padding: 10px 25px;
    border-radius: 4px;
}

    .btn-nav:hover {
        background-color: var(--primary-dark);
    }

/* 2. DROPDOWN MENU STYLES */

/* The Dropdown Container */
.dropdown {
    position: relative; /* Necessary for positioning the dropdown content */
    cursor: pointer;
}

/* Dropdown Arrow Icon (optional) */
.dropbtn i {
    font-size: 0.8em;
    margin-left: 5px;
    transition: transform 0.3s;
}

.dropdown:hover .dropbtn i {
    transform: rotate(180deg);
}

/* The Dropdown Content Box */
.dropdown-content {
    display: none; /* Hidden by default */
    position: absolute;
    top: 100%; /* Positions it right below the link */
    left: 0;
    background-color: var(--white);
    min-width: 200px;
    box-shadow: 0 8px 16px rgba(0,0,0,0.1);
    border-top: 3px solid var(--primary-color);
    z-index: 1;
    border-radius: 0 0 4px 4px;
    overflow: hidden;
    animation: fadeIn 0.3s ease;
}

/* Show dropdown on hover over the parent list item */
.dropdown:hover .dropdown-content {
    display: block;
}

/* Links inside the dropdown */
.dropdown-content a {
    color: var(--text-dark);
    padding: 12px 20px;
    text-decoration: none;
    display: block;
    text-transform: none; /* Keep sentence case for sub-items */
    font-size: 0.9rem;
    border-bottom: 1px solid #f0f0f0;
    
}

    .dropdown-content a:last-child {
        border-bottom: none;
    }

    .dropdown-content a:hover {
        background-color: #f9f9f9;
        color: var(--primary-color);
        padding-left: 25px; /* Slide effect */
    }

/* 3. MOBILE RESPONSIVENESS (Hamburger) */

.hamburger {
    display: none; /* Hidden on desktop */
    cursor: pointer;
}

/* Mobile View Styles */
@media (max-width: 768px) {
    .hamburger {
        display: block; /* Show burger on mobile */
        font-size: 1.5rem;
        color: var(--text-dark);
    }

    .nav-links {
        position: absolute;
        right: 0;
        top: 70px; /* Below the header height */
        background-color: var(--white);
        flex-direction: column;
        width: 100%; /* Full width dropdown */
        text-align: center;
        padding: 20px 0;
        gap: 0;
        box-shadow: 0 10px 10px rgba(0,0,0,0.05);
        max-height: 0; /* Hidden */
        overflow: hidden;
        transition: max-height 0.4s ease-out;
    }

        .nav-links.active {
            max-height: 500px; /* Open height */
            border-bottom: 3px solid var(--primary-color);
        }

        .nav-links li {
            width: 100%;
        }

        .nav-links a {
            display: block;
            padding: 15px 0;
            border-bottom: 1px solid #eee;
        }

    .btn-nav {
        display: inline-block;
        margin: 15px 0;
    }

    /* Mobile Dropdown Styles */
    .dropdown-content {
        position: static; /* Stack below link in mobile */
        display: none; /* Still hidden initially */
        background-color: #f9f9f9;
        box-shadow: none;
        border: none;
        width: 100%;
        border-radius: 0;
    }

    /* Always show dropdown inside active mobile menu if clicked, 
       or handle with CSS hover for simplicity */
    .dropdown:hover .dropdown-content {
        display: block;
        box-shadow: none;
    }
}

/* Simple Fade Animation */
@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(-10px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}/* --- OTHER PRODUCTS GALLERY GRID STYLES --- */

:root {
    --primary-color: #5A1915;
    --primary-dark: #12612B;
    --text-dark: #0E672F;
    --text-light: #555;
    --bg-light: #f9f9f9;
    --white: #ffffff;
    --font-heading: 'Playfair Display', serif;
    --font-body: 'Montserrat', sans-serif;
}

/* 1. Hero Section */
.prod-hero {
    position: relative;
    height: 40vh; /* Slightly smaller hero for catalog pages */
    min-height: 300px;
    background-image: url('https://images.unsplash.com/photo-1596040033229-a9821ebd058d?q=80&w=1600');
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: var(--white);
}

    .prod-hero::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background: rgba(0,0,0,0.6);
    }

.prod-hero-content {
    position: relative;
    z-index: 2;
    max-width: 800px;
    padding: 20px;
}

.prod-hero h1 {
    font-family: var(--font-heading);
    font-size: 3.5rem;
    margin-bottom: 15px;
}

.prod-hero .quote {
    font-size: 1.4rem;
    font-style: italic;
    font-weight: 300;
    border-left: 3px solid var(--primary-color);
    padding-left: 20px;
    display: inline-block;
    margin-top: 20px;
}

/* 2. Grid Container */
.other-products-section {
    padding: 80px 20px;
    background-color: var(--white);
}

.other-grid {
    display: grid;
    /* Responsive Grid: Adapts columns automatically */
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 30px;
    max-width: 1400px;
    margin: 0 auto;
}

/* 3. Product Card */
.other-card {
    background: var(--white);
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
    transition: all 0.3s ease;
    border: 1px solid #eee;
    display: flex;
    flex-direction: column;
}

    .other-card:hover {
        transform: translateY(-5px);
        box-shadow: 0 15px 30px rgba(139, 175, 41, 0.15); /* Green tint on hover */
        border-color: var(--primary-color);
    }

.card-img-wrapper {
    width: 100%;
    height: 200px;
    overflow: hidden;
    background-color: #f4f4f4;
}

    .card-img-wrapper img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        transition: transform 0.5s ease;
    }

.other-card:hover .card-img-wrapper img {
    transform: scale(1.05);
}

.card-body {
    padding: 25px;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}

    .card-body h3 {
        font-family: var(--font-heading);
        font-size: 1.5rem;
        color: var(--text-dark);
        margin-bottom: 15px;
        border-bottom: 2px solid var(--primary-color);
        padding-bottom: 10px;
        display: inline-block;
    }

/* Botanical Info Styling */
.botanical-info {
    margin-top: auto; /* Pushes info to bottom if needed, or just flows */
    font-size: 0.9rem;
    color: var(--text-light);
}

.info-row {
    display: flex;
    justify-content: space-between;
    margin-bottom: 8px;
    padding-bottom: 8px;
    border-bottom: 1px dashed #eee;
}

    .info-row:last-child {
        border-bottom: none;
    }

.info-label {
    font-weight: 700;
    color: var(--text-dark);
    text-transform: uppercase;
    font-size: 0.75rem;
    letter-spacing: 0.5px;
}

.info-value {
    text-align: right;
    font-style: italic;
}

/* Responsive */
@media (max-width: 768px) {
    .prod-hero h1 {
        font-size: 2.2rem;
    }

    .other-grid {
        grid-template-columns: 1fr;
    }
    /* Single column on mobile */
}

/* --- CORIANDER PRODUCT PAGE STYLES --- */

:root {
    --primary-color: #5A1915;
    --primary-dark: #12612B;
    --text-dark: #0E672F;
    --text-light: #555;
    --bg-light: #f9f9f9;
    --white: #ffffff;
    --font-heading: 'Playfair Display', serif;
    --font-body: 'Montserrat', sans-serif;
}

/* 1. Product Hero */
.prod-hero {
    position: relative;
    height: 60vh;
    min-height: 400px;
    /* Replace with a Coriander field image */
    background-image: url('https://images.unsplash.com/photo-1599909533681-74084efc65f4?q=80&w=1600');
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: var(--white);
}

    .prod-hero::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background: rgba(0,0,0,0.6);
    }

.prod-hero-content {
    position: relative;
    z-index: 2;
    max-width: 800px;
    padding: 20px;
}

.prod-hero h1 {
    font-family: var(--font-heading);
    font-size: 3.5rem;
    margin-bottom: 15px;
}

.prod-hero .quote {
    font-size: 1.4rem;
    font-style: italic;
    font-weight: 300;
    border-left: 3px solid var(--primary-color);
    padding-left: 20px;
    display: inline-block;
    margin-top: 20px;
}

/* 2. Sticky Sub-Navigation */
.prod-sub-nav {
    background: var(--white);
    position: sticky;
    top: 0;
    z-index: 100;
    box-shadow: 0 4px 10px rgba(0,0,0,0.05);
    padding: 15px 0;
    border-bottom: 1px solid #eee;
}

.prod-nav-list {
    display: flex;
    justify-content: center;
    gap: 20px;
    list-style: none;
    flex-wrap: wrap;
}

    .prod-nav-list a {
        text-decoration: none;
        color: var(--text-dark);
        font-family: var(--font-body);
        font-weight: 600;
        padding: 8px 20px;
        border-radius: 20px;
        transition: all 0.3s ease;
        font-size: 0.9rem;
        text-transform: uppercase;
        letter-spacing: 1px;
    }

        .prod-nav-list a:hover, .prod-nav-list a.active {
            background-color: var(--primary-color);
            color: var(--white);
        }

/* 3. Product Zig-Zag Layout */
.prod-section {
    padding: 80px 20px;
    background-color: var(--white);
}

.prod-container {
    max-width: 1200px;
    margin: 0 auto;
}

.prod-row {
    display: flex;
    align-items: center;
    gap: 60px;
    margin-bottom: 100px;
}

    /* Alternating Layout */
    .prod-row.reverse {
        flex-direction: row-reverse;
    }

.prod-img-box {
    flex: 1;
    position: relative;
}

    .prod-img-box img {
        width: 100%;
        height: auto;
        border-radius: 12px;
        box-shadow: 0 15px 40px rgba(0,0,0,0.1);
        object-fit: cover;
        aspect-ratio: 4/3;
    }

.prod-text-box {
    flex: 1;
}

    .prod-text-box h2 {
        font-family: var(--font-heading);
        font-size: 2.5rem;
        color: var(--primary-color);
        margin-bottom: 20px;
    }

    .prod-text-box p {
        font-size: 1.05rem;
        color: var(--text-light);
        line-height: 1.8;
        margin-bottom: 15px;
    }

/* 4. Attributes List (Custom Checkmark) */
.prod-attributes {
    margin-top: 20px;
    padding: 25px;
    background-color: var(--bg-light);
    border-radius: 8px;
    border-left: 4px solid var(--primary-color);
}

    .prod-attributes h4 {
        font-family: var(--font-body);
        font-size: 1.1rem;
        margin-bottom: 15px;
        color: var(--text-dark);
    }

.check-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

    .check-list li {
        margin-bottom: 12px;
        padding-left: 30px;
        position: relative;
        color: var(--text-light);
        font-size: 1rem;
    }

        /* Custom Checkmark Icon using CSS */
        .check-list li::before {
            content: '';
            position: absolute;
            left: 0;
            top: 4px;
            width: 8px;
            height: 14px;
            border: solid var(--primary-color);
            border-width: 0 2px 2px 0;
            transform: rotate(45deg);
        }

/* 5. Back to Products Link */
.prod-back-link {
    text-align: center;
    padding: 40px 20px;
    background-color: var(--bg-light);
    border-top: 1px solid #eee;
}

    .prod-back-link a {
        color: var(--primary-dark);
        text-decoration: none;
        font-weight: 600;
        text-transform: uppercase;
        font-size: 0.9rem;
    }

/* Responsive */
@media (max-width: 768px) {
    .prod-hero h1 {
        font-size: 2.2rem;
    }

    .prod-row, .prod-row.reverse {
        flex-direction: column;
    }

    .prod-nav-list {
        gap: 10px;
    }

        .prod-nav-list a {
            font-size: 0.8rem;
            padding: 6px 12px;
        }
}

/* --- RED CHILLI PRODUCT PAGE STYLES --- */

:root {
    --primary-color: #5A1915; /* Brand Green */
    --primary-dark: #12612B;
    --text-dark: #0E672F;
    --text-light: #555;
    --bg-light: #f9f9f9;
    --white: #ffffff;
    --font-heading: 'Playfair Display', serif;
    --font-body: 'Montserrat', sans-serif;
}

/* 1. Product Hero */
.prod-hero {
    position: relative;
    height: 60vh;
    min-height: 400px;
    background-image: url('https://images.unsplash.com/photo-1599909533681-74084efc65f4?q=80&w=1600'); /* Replace with red chilli banner image */
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: var(--white);
}

    .prod-hero::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background: rgba(0,0,0,0.6); /* Dark overlay */
    }

.prod-hero-content {
    position: relative;
    z-index: 2;
    max-width: 800px;
    padding: 20px;
}

.prod-hero h1 {
    font-family: var(--font-heading);
    font-size: 3.5rem;
    margin-bottom: 15px;
}

.prod-hero .quote {
    font-size: 1.4rem;
    font-style: italic;
    font-weight: 300;
    border-left: 3px solid var(--primary-color);
    padding-left: 20px;
    display: inline-block;
    margin-top: 20px;
}

/* 2. Sticky Sub-Navigation */
.prod-sub-nav {
    background: var(--white);
    position: sticky;
    top: 0; /* Sticks to top of viewport (adjust if you have a fixed header) */
    z-index: 100;
    box-shadow: 0 4px 10px rgba(0,0,0,0.05);
    padding: 15px 0;
    border-bottom: 1px solid #eee;
}

.prod-nav-list {
    display: flex;
    justify-content: center;
    gap: 20px;
    list-style: none;
    flex-wrap: wrap;
}

    .prod-nav-list a {
        text-decoration: none;
        color: var(--text-dark);
        font-family: var(--font-body);
        font-weight: 600;
        padding: 8px 20px;
        border-radius: 20px;
        transition: all 0.3s ease;
        font-size: 0.9rem;
        text-transform: uppercase;
        letter-spacing: 1px;
    }

        .prod-nav-list a:hover, .prod-nav-list a.active {
            background-color: var(--primary-color);
            color: var(--white);
        }

/* 3. Product Zig-Zag Layout */
.prod-section {
    padding: 80px 20px;
    background-color: var(--white);
}

.prod-container {
    max-width: 1200px;
    margin: 0 auto;
}

.prod-row {
    display: flex;
    align-items: center;
    gap: 60px;
    margin-bottom: 100px; /* Space between products */
}

    /* Alternating Layout */
    .prod-row.reverse {
        flex-direction: row-reverse;
    }

.prod-img-box {
    flex: 1;
    position: relative;
}

    .prod-img-box img {
        width: 100%;
        height: auto;
        border-radius: 12px;
        box-shadow: 0 15px 40px rgba(0,0,0,0.1);
        /* Ensure images look uniform */
        object-fit: cover;
        aspect-ratio: 4/3;
    }

.prod-text-box {
    flex: 1;
}

    .prod-text-box h2 {
        font-family: var(--font-heading);
        font-size: 2.5rem;
        color: var(--primary-color);
        margin-bottom: 20px;
    }

    .prod-text-box p {
        font-size: 1.05rem;
        color: var(--text-light);
        line-height: 1.8;
        margin-bottom: 15px;
    }

    /* Highlighting the scientific names */
    .prod-text-box strong {
        color: var(--text-dark);
        font-weight: 700;
    }

/* 4. Back to Products Link */
.prod-back-link {
    text-align: center;
    padding: 40px 20px;
    background-color: var(--bg-light);
    border-top: 1px solid #eee;
}

    .prod-back-link a {
        color: var(--primary-dark);
        text-decoration: none;
        font-weight: 600;
        text-transform: uppercase;
        font-size: 0.9rem;
    }

/* Responsive */
@media (max-width: 768px) {
    .prod-hero h1 {
        font-size: 2.2rem;
    }

    .prod-row, .prod-row.reverse {
        flex-direction: column;
    }

    .prod-nav-list {
        gap: 10px;
    }

        .prod-nav-list a {
            font-size: 0.8rem;
            padding: 6px 12px;
        }
}


/* --- CERTIFICATES PAGE LAYOUT STYLES --- */

:root {
    --primary-color: #5A1915;
    --primary-dark: #12612B;
    --text-dark: #0E672F;
    --bg-light: #f4f7f6;
    --white: #ffffff;
    --font-heading: 'Playfair Display', serif;
    --font-body: 'Montserrat', sans-serif;
}

/* Certificate Section */
.cert-showcase-section {
    padding: 100px 20px;
    background-color: var(--bg-light);
}

.cert-header {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 60px;
}

    .cert-header h2 {
        font-family: var(--font-heading);
        font-size: 2.8rem;
        color: var(--text-dark);
        margin-bottom: 15px;
    }

    .cert-header p {
        font-size: 1.1rem;
        color: var(--text-light);
    }

/* Certificate Grid */
.cert-grid {
    display: grid;
    /* Creates a responsive grid: 1 column mobile, 2 columns tablet/desktop */
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: 40px;
    max-width: 1200px;
    margin: 0 auto;
}

/* Certificate Card */
.cert-card {
    background: var(--white);
    border-radius: 12px;
    padding: 20px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    display: flex;
    flex-direction: column;
    align-items: center;
    border: 1px solid rgba(0,0,0,0.05);
}

    .cert-card:hover {
        transform: translateY(-10px);
        box-shadow: 0 20px 40px rgba(139, 175, 41, 0.15); /* Green tint shadow */
        border-color: var(--primary-color);
    }

/* Image Container */
.cert-img-wrapper {
    width: 100%;
    /* Light gray background to show transparency if images are PNGs */
    background-color: #fcfcfc;
    border-radius: 8px;
    overflow: hidden;
    border: 1px solid #eee;
    /* Flex center to ensure image sits nicely */
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 400px;
}

    .cert-img-wrapper img {
        width: 100%;
        height: auto;
        max-height: 600px;
        /* 'contain' ensures the WHOLE certificate is visible without cropping text */
        object-fit: contain;
        display: block;
        transition: transform 0.5s ease;
    }

.cert-card:hover .cert-img-wrapper img {
    transform: scale(1.03);
}

/* Certificate Title */
.cert-info {
    margin-top: 20px;
    text-align: center;
}

    .cert-info h3 {
        font-family: var(--font-heading);
        font-size: 1.4rem;
        color: var(--text-dark);
        margin-bottom: 5px;
    }

    .cert-info span {
        display: inline-block;
        padding: 4px 12px;
        background-color: rgba(139, 175, 41, 0.1);
        color: var(--primary-dark);
        border-radius: 20px;
        font-size: 0.8rem;
        font-weight: 600;
        text-transform: uppercase;
        letter-spacing: 1px;
    }

/* Responsive adjustments */
@media (max-width: 600px) {
    .cert-grid {
        grid-template-columns: 1fr; /* Single column on very small screens */
    }

    .cert-header h2 {
        font-size: 2.2rem;
    }
}


/* --- VALUES PAGE LAYOUT STYLES --- */

:root {
    --primary-color: #5A1915;
    --primary-dark: #12612B;
    --text-dark: #0E672F;
    --text-light: #666;
    --bg-light: #fdfdfd;
    --white: #ffffff;
    --accent-bg: #f4f7f6;
    --font-heading: 'Playfair Display', serif;
    --font-body: 'Montserrat', sans-serif;
}

/* 1. Philosophy Hero */
.val-hero {
    position: relative;
    padding: 120px 20px;
    background-image: url('https://images.unsplash.com/photo-1532336414038-cf19250c5757?q=80&w=1600'); /* Hands holding soil/spices */
    background-size: cover;
    background-position: center;
    text-align: center;
    color: var(--white);
}

.val-hero::before {
    content: '';
    position: absolute;
    top: 0; left: 0; width: 100%; height: 100%;
    background: rgba(0, 0, 0, 0.4);
    z-index: 1;
}

.val-hero-content {
    position: relative;
    z-index: 2;
    max-width: 800px;
    margin: 0 auto;
    color: #fff;
}

.val-hero h1 {
    font-family: var(--font-heading);
    font-size: 3.5rem;
    margin-bottom: 20px;
    letter-spacing: 1px; color:#fff;
}

.val-hero p {
    font-size: 1.3rem;
    font-weight: 300;
    line-height: 1.6;
    color: #fff;
}

/* 2. The 5 Pillars Grid */
.val-pillars-section {
    padding: 100px 20px;
    background-color: var(--white);
}

.val-pillars-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    max-width: 1200px;
    margin: 0 auto;
}

.val-pillar-card {
    background: var(--bg-light);
    padding: 40px 30px;
    border-radius: 8px;
    text-align: center;
    transition: all 0.3s ease;
    border: 1px solid #eee;
}

.val-pillar-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 10px 30px rgba(0,0,0,0.08);
    border-bottom: 4px solid var(--primary-color);
}

.val-icon-box {
    font-size: 2.5rem;
    color: var(--primary-color);
    margin-bottom: 20px;
}

.val-pillar-card h3 {
    font-family: var(--font-heading);
    font-size: 1.4rem;
    color: var(--text-dark);
    margin-bottom: 15px;
}

/* 3. Philosophy / Freshness Split */
.val-philosophy-section {
    padding: 100px 20px;
    background-color: var(--accent-bg);
}

.val-split-container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    gap: 60px;
}

.val-phil-img {
    flex: 1;
    height: 500px;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(0,0,0,0.1);
}

.val-phil-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.val-phil-text {
    flex: 1;
}

.val-phil-text h2 {
    font-family: var(--font-heading);
    font-size: 2.5rem;
    color: var(--primary-color);
    margin-bottom: 25px;
}

.val-phil-text p {
    font-size: 1.1rem;
    color: var(--text-light);
    line-height: 1.8;
    margin-bottom: 20px;
}

.val-highlight-box {
    background: var(--white);
    padding: 25px;
    border-left: 5px solid var(--primary-color);
    font-style: italic;
    color: var(--text-dark);
    margin: 30px 0;
}

/* 4. Trust & Future Section */
.val-trust-section {
    padding: 100px 20px;
    background-color: var(--text-dark); /* Dark background for contrast */
    color: var(--white);
    text-align: center;
}

.val-trust-container {
    max-width: 900px;
    margin: 0 auto;
}

.val-trust-section h2 {
    font-family: var(--font-heading);
    font-size: 2.5rem;
    margin-bottom: 30px;
    color: var(--white);
}

.val-trust-text {
    font-size: 1.1rem;
    line-height: 1.8;
    color: #ddd;
    margin-bottom: 40px;
}

.val-cta-btn {
    display: inline-block;
    padding: 15px 40px;
    background-color: var(--primary-color);
    color: var(--white);
    font-weight: 700;
    text-transform: uppercase;
    border-radius: 4px;
    transition: background 0.3s;
}

.val-cta-btn:hover {
    background-color: var(--white);
    color: var(--primary-color);
}

/* Responsive */
@media (max-width: 768px) {
    .val-hero h1 { font-size: 2.2rem; }
    .val-split-container { flex-direction: column; }
    .val-phil-img { width: 100%; height: 300px; }
    .val-phil-text h2 { font-size: 2rem; }
}
/* --- STRENGTH PAGE LAYOUT STYLES --- */

:root {
    --primary-color: #5A1915;
    --primary-dark: #12612B;
    --text-dark: #0E672F;
    --text-light: #666;
    --bg-light: #f4f7f6;
    --white: #ffffff;
    --dark-bg: #1a1a1a;
    --font-heading: 'Playfair Display', serif;
    --font-body: 'Montserrat', sans-serif;
}
/* 1. Dark Strength Hero */
.str-hero-section {
    position: relative;
    padding: 100px 20px;
    background-image: url('https://images.unsplash.com/photo-1595855709915-6b9f0198695a?q=80&w=1600'); /* Warehouse/Shipping image */
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    color: var(--white);
    text-align: center;
}

    .str-hero-section::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background: rgba(0, 0, 0, 0.7);
        z-index: 1;
    }

.str-hero-content {
    position: relative;
    z-index: 2;
    max-width: 800px;
    margin: 0 auto;
}

    .str-hero-content h1 {
        font-family: var(--font-heading);
        font-size: 3.5rem;
        margin-bottom: 20px;
        color: var(--white);
    }

    .str-hero-content p {
        font-size: 1.2rem;
        color: #ddd;
    }

/* 2. Intro / Exports Section (Split) */
.str-intro-section {
    padding: 80px 20px;
    max-width: 1200px;
    margin: 0 auto;
}

.str-split-row {
    display: flex;
    align-items: center;
    gap: 60px;
    margin-bottom: 80px;
}

    /* For alternating layout */
    .str-split-row.reverse {
        flex-direction: row-reverse;
    }

.str-text-col {
    flex: 1;
}

.str-image-col {
    flex: 1;
    height: 400px;
    overflow: hidden;
    border-radius: 8px;
    box-shadow: 0 15px 30px rgba(0,0,0,0.1);
}

    .str-image-col img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        transition: transform 0.5s ease;
    }

    .str-image-col:hover img {
        transform: scale(1.05);
    }

.str-text-col h2 {
    font-family: var(--font-heading);
    font-size: 2.5rem;
    color: var(--primary-color);
    margin-bottom: 20px;
}

.str-text-col p {
    font-size: 1.05rem;
    color: var(--text-light);
    line-height: 1.8;
    margin-bottom: 15px;
}

/* 3. Packaging Grid (Dark Theme) */
.str-packaging-section {
    background-color: var(--dark-bg);
    color: var(--white);
    padding: 100px 20px;
}

.str-pack-header {
    text-align: center;
    margin-bottom: 60px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

    .str-pack-header h2 {
        font-family: var(--font-heading);
        font-size: 2.5rem;
        color: var(--primary-color);
    }

.str-pack-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    max-width: 1200px;
    margin: 0 auto;
}

.str-pack-card {
    background: rgba(255, 255, 255, 0.05);
    padding: 30px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 8px;
    transition: all 0.3s ease;
}

    .str-pack-card:hover {
        background: rgba(255, 255, 255, 0.1);
        transform: translateY(-5px);
        border-color: var(--primary-color);
    }

    .str-pack-card h3 {
        font-family: var(--font-heading);
        font-size: 1.4rem;
        margin-bottom: 15px;
        color: var(--white);
    }

    .str-pack-card p {
        font-size: 0.95rem;
        color: #ccc;
        line-height: 1.6;
    }

/* 4. Benefits (3-Column Grid) */
.str-benefits-section {
    padding: 100px 20px;
    background-color: var(--bg-light);
}

.str-benefits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 40px;
    max-width: 1200px;
    margin: 0 auto;
}

.str-benefit-item {
    background: var(--white);
    padding: 40px 30px;
    border-radius: 8px;
    text-align: center;
    box-shadow: 0 5px 20px rgba(0,0,0,0.05);
    position: relative;
    overflow: hidden;
}

    .str-benefit-item::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 4px;
        background: var(--primary-color);
    }

.str-benefit-icon {
    width: 70px;
    height: 70px;
    background: rgba(139, 175, 41, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 25px;
    font-size: 1.5rem;
    color: var(--primary-color);
}

.str-benefit-item h3 {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    margin-bottom: 15px;
}

/* Responsive */
@media (max-width: 768px) {
    .str-hero-content h1 {
        font-size: 2.2rem;
    }

    .str-split-row, .str-split-row.reverse {
        flex-direction: column;
    }

    .str-image-col {
        width: 100%;
        height: 250px;
    }

    .str-text-col h2 {
        font-size: 2rem;
    }
}

/* 1. Cinematic Hero Section */
.alt-hero {
    position: relative;
    height: 60vh; /* Taller than standard, but not full screen */
    min-height: 400px;
    background-image: url('https://images.unsplash.com/photo-1596040033229-a9821ebd058d?q=80&w=1600');
    background-size: cover;
    background-position: center;
    background-attachment: fixed; /* Parallax effect */
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: var(--white);
}

    .alt-hero::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background: rgba(0, 0, 0, 0.5); /* Dark overlay */
    }

.alt-hero-content {
    position: relative;
    z-index: 2;
    max-width: 800px;
    padding: 20px;
}

.alt-hero-badge {
    background: var(--primary-color);
    color: var(--white);
    padding: 5px 15px;
    text-transform: uppercase;
    letter-spacing: 2px;
    font-size: 0.8rem;
    font-weight: 700;
    display: inline-block;
    margin-bottom: 15px;
    border-radius: 2px;
}

.alt-hero h1 {
    font-family: var(--font-heading);
    font-size: 3.5rem;
    margin: 0;
    line-height: 1.1;
}

/* 2. History Split Section */
.alt-history-section {
    padding: 80px 20px;
    max-width: 1200px;
    margin: 0 auto;
}

.alt-split-layout {
    display: flex;
    flex-wrap: wrap;
    gap: 50px;
    align-items: flex-start;
}

.alt-history-text {
    flex: 2;
    min-width: 300px;
}

.alt-history-sidebar {
    flex: 1;
    min-width: 280px;
    background: var(--bg-light);
    padding: 30px;
    border-left: 4px solid var(--primary-color);
}

.alt-history-text h2 {
    font-family: var(--font-heading);
    font-size: 2.5rem;
    color: var(--primary-color);
    margin-bottom: 20px;
}

.alt-history-text p {
    font-size: 1.1rem;
    color: var(--text-light);
    margin-bottom: 20px;
    line-height: 1.8;
}

.sidebar-item {
    margin-bottom: 25px;
}

    .sidebar-item h4 {
        font-family: var(--font-heading);
        font-size: 1.2rem;
        margin-bottom: 5px;
        color: var(--text-dark);
    }

    .sidebar-item span {
        font-size: 0.9rem;
        color: var(--text-light);
        display: block;
    }

/* 3. Why Us Grid (Different from previous list) */
.alt-why-section {
    background-color: var(--white);
    padding: 80px 20px;
}

.alt-section-header {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 60px;
}

    .alt-section-header h2 {
        font-family: var(--font-heading);
        font-size: 2.5rem;
        margin-bottom: 15px;
    }

.alt-grid-3 {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    max-width: 1200px;
    margin: 0 auto;
}

.alt-feature-card {
    background: var(--white);
    padding: 30px;
    border: 1px solid #eee;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

    .alt-feature-card:hover {
        border-color: var(--primary-color);
        transform: translateY(-5px);
        box-shadow: 0 10px 30px rgba(0,0,0,0.05);
    }

    .alt-feature-card::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        width: 4px;
        height: 0;
        background: var(--primary-color);
        transition: height 0.3s ease;
    }

    .alt-feature-card:hover::before {
        height: 100%;
    }

    .alt-feature-card h3 {
        font-size: 1.1rem;
        margin-bottom: 10px;
        color: var(--text-dark);
    }

/* 4. Mission & Vision Split Panels */
.alt-mv-container {
    display: flex;
    flex-wrap: wrap;
    min-height: 400px;
}

.alt-mv-mission {
    flex: 1;
    background: var(--primary-color);
    color: var(--white);
    padding: 60px 40px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    min-width: 300px;
}

.alt-mv-vision {
    flex: 1;
    background: #0E672F;
    color: var(--white);
    padding: 60px 40px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    min-width: 300px;
}

.alt-mv-label {
    text-transform: uppercase;
    letter-spacing: 2px;
    font-size: 0.9rem;
    opacity: 0.8;
    margin-bottom: 15px;
    font-weight: 600;
}

.alt-mv-text {
    font-family: var(--font-heading);
    font-size: 2rem;
    line-height: 1.4;
}

/* Responsive */
@media (max-width: 768px) {
    .alt-hero h1 {
        font-size: 2.2rem;
    }

    .alt-history-sidebar {
        width: 100%;
        border-left: none;
        border-top: 4px solid var(--primary-color);
    }

    .alt-mv-text {
        font-size: 1.5rem;
    }
}/* --- VARIABLES & RESET --- */
:root {
    --primary-red: #8a1c1c;
    --primary-gold: #d4af37;
    --dark-charcoal: #121212;
    --off-white: #f4f1ea;
    --white: #ffffff;
    --text-grey: #4a4a4a;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Montserrat', sans-serif;
    color: var(--dark-charcoal);
    background-color: var(--white);
    overflow-x: hidden;
    line-height: 1.6;
}

h1, h2, h3, h4 {
    font-family: 'Playfair Display', serif;
    color: var(--primary-red);
}

a {
    text-decoration: none;
    color: inherit;
    transition: 0.3s;
}

ul {
    list-style: none;
}

img {
    max-width: 100%;
    display: block;
}

/* --- SCROLL PROGRESS --- */
.progress-container {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: transparent;
    z-index: 2000;
}

.progress-bar {
    height: 4px;
    background: var(--primary-gold);
    width: 0%;
}

 

/* --- HERO SLIDER --- */
.hero-slider-container {
    height: 100vh;
    width: 100%;
    position: relative;
    overflow: hidden;
}

.slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    opacity: 0;
    transition: opacity 1s ease-in-out;
    display: flex;
    align-items: center;
    justify-content: center;
}

    .slide.active {
        opacity: 1;
    }

    .slide::after {
        content: '';
        position: absolute;
        inset: 0;
        background: rgba(0,0,0,0.5); /* Dark overlay */
    }

.slide-content {
    position: relative;
    z-index: 2;
    text-align: center;
    color: var(--white);
    max-width: 900px;
    padding: 0 20px;
}

.hero-subtitle {
    font-size: 1rem;
    letter-spacing: 4px;
    text-transform: uppercase;
    margin-bottom: 20px;
    color: var(--primary-gold);
    font-weight: 600;
}

.hero-title {
    font-size: clamp(3rem, 6vw, 5rem);
    font-weight: 700;
    line-height: 1.1;
    margin-bottom: 30px;
}

.hero-btn {
    display: inline-block;
    padding: 18px 45px;
    background: var(--primary-red);
    color: var(--white);
    font-weight: 600;
    text-transform: uppercase;
    border-radius: 50px;
    box-shadow: 0 10px 20px rgba(138, 28, 28, 0.3);
    transition: transform 0.3s;
}

    .hero-btn:hover {
        transform: translateY(-5px);
        background: var(--white);
        color: var(--primary-red);
    }

.slider-controls {
    position: absolute;
    width: 100%;
    display: flex;
    justify-content: space-between;
    padding: 0 50px;
    top: 50%;
    transform: translateY(-50%);
    z-index: 10;
}

.control-btn {
    background: rgba(255,255,255,0.2);
    color: var(--white);
    border: 1px solid rgba(255,255,255,0.5);
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: 0.3s;
}

    .control-btn:hover {
        background: var(--primary-gold);
        border-color: var(--primary-gold);
        color: var(--dark-charcoal);
    }

.scroll-down {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 2;
    animation: bounce 2s infinite;
    color: var(--white);
    font-size: 1.5rem;
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% {
        transform: translateX(-50%) translateY(0);
    }

    40% {
        transform: translateX(-50%) translateY(-10px);
    }

    60% {
        transform: translateX(-50%) translateY(-5px);
    }
}

/* --- INTRO SPLIT --- */
.intro-split {
    display: flex;
    min-height: 80vh;
    width: 100%;
}

.split-image {
    flex: 1;
    background: url('file:///C:/Users/pooja/OneDrive/Desktop/Shanti/img/banner%203.jpg') center/cover no-repeat;
    position: relative;
}

    .split-image::after {
        content: '';
        position: absolute;
        inset: 0;
        background: rgba(0,0,0,0.3);
    }

.split-text {
    flex: 1;
    background: var(--off-white);
    padding: 100px 80px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    position: relative;
}

.large-number {
    position: absolute;
    top: 40px;
    right: 40px;
    font-size: 10rem;
    font-family: 'Playfair Display', serif;
    color: rgba(212, 175, 55, 0.1);
    font-weight: 700;
    line-height: 1;
}

.split-text h2 {
    font-size: 3rem;
    margin-bottom: 25px;
    position: relative;
    z-index: 2;
}

.split-text p {
    margin-bottom: 20px;
    font-size: 1.05rem;
    color: var(--text-grey);
    max-width: 500px;
}

.stats-row {
    display: flex;
    gap: 40px;
    margin-top: 40px;
}

.stat-item h4 {
    font-size: 2rem;
    color: var(--primary-gold);
    margin-bottom: 5px;
}

.stat-item span {
    text-transform: uppercase;
    font-size: 0.8rem;
    font-weight: 600;
    color: var(--primary-red);
}

/* --- CERTIFICATIONS --- */
.cert-section {
    padding: 80px 5%;
    background: var(--white);
    text-align: center;
}

.cert-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.cert-card {
    padding: 30px;
    border: 1px solid #eee;
    border-radius: 8px;
    transition: 0.3s;
}

    .cert-card:hover {
        box-shadow: 0 10px 20px rgba(0,0,0,0.1);
        border-color: var(--primary-gold);
    }

    .cert-card i {
        font-size: 2.5rem;
        color: var(--primary-gold);
        margin-bottom: 20px;
    }

/* --- PROCESS --- */
.process-section {
    padding: 100px 5%;
    background: var(--white);
}

.section-header {
    text-align: center;
    margin-bottom: 80px;
}

    .section-header h2 {
        font-size: 3rem;
        margin-bottom: 15px;
    }

    .section-header p {
        color: var(--text-grey);
        max-width: 600px;
        margin: 0 auto;
    }

.process-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
}

.process-card {
    background: var(--off-white);
    padding: 60px 30px;
    text-align: center;
    border-bottom: 3px solid transparent;
    transition: 0.4s;
}

    .process-card:hover {
        transform: translateY(-10px);
        border-bottom-color: var(--primary-gold);
        box-shadow: 0 15px 30px rgba(0,0,0,0.1);
    }

.process-icon {
    font-size: 3rem;
    color: var(--primary-red);
    margin-bottom: 25px;
}

/* --- MILESTONES --- */
.milestones-parallax {
    background-image: linear-gradient(rgba(0,0,0,0.8), rgba(0,0,0,0.8)), url('https://images.unsplash.com/photo-1506929562872-bb421503ef21?q=80&w=2068');
    background-attachment: fixed;
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    color: var(--white);
    padding: 120px 5%;
}

.milestones-container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 60px;
}

.milestone-item {
    display: flex;
    align-items: center;
    gap: 50px;
    border-bottom: 1px solid rgba(255,255,255,0.2);
    padding-bottom: 40px;
}

    .milestone-item:last-child {
        border-bottom: none;
    }

.milestone-year {
    font-size: 4rem;
    font-family: 'Playfair Display', serif;
    font-weight: 700;
    color: var(--primary-gold);
    min-width: 150px;
    text-align: center;
    line-height: 1;
}

.milestone-content h3 {
    color: var(--white);
    font-size: 2rem;
    margin-bottom: 10px;
}

.milestone-content p {
    color: rgba(255,255,255,0.8);
}

/* --- TESTIMONIALS --- */
.testimonials {
    padding: 100px 5%;
    background: #f9f9f9;
}

.testimonial-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.testimonial-card {
    background: var(--white);
    padding: 40px;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
    position: relative;
}

.quote-icon {
    color: var(--primary-gold);
    font-size: 2rem;
    margin-bottom: 20px;
}

.testimonial-card h4 {
    margin-top: 20px;
    color: var(--primary-red);
    font-weight: 700;
}

/* --- PRODUCTS --- */
.products-section {
    padding: 100px 0;
    background: var(--dark-charcoal);
    color: var(--white);
}

    .products-section h2 {
        color: var(--white);
        text-align: center;
        margin-bottom: 60px;
        font-size: 3rem;
    }

.product-showcase {
    display: flex;
    flex-wrap: wrap;
}

.product-item {
    flex: 1;
    min-width: 300px;
    height: 400px;
    position: relative;
    overflow: hidden;
}

    .product-item img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        transition: transform 0.6s ease;
    }

.product-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    padding: 30px;
    background: linear-gradient(to top, rgba(0,0,0,0.9), transparent);
    transform: translateY(20px);
    opacity: 0.8;
    transition: 0.4s;
}

.product-item:hover img {
    transform: scale(1.1);
}

.product-item:hover .product-overlay {
    transform: translateY(0);
    opacity: 1;
}

.product-overlay h3 {
    color: var(--primary-gold);
    margin-bottom: 5px;
    font-size: 1.5rem;
}

/* --- CONTACT FORM --- */
.contact-form-section {
    padding: 100px 5%;
    background: var(--white);
}

.contact-wrapper {
    display: flex;
    flex-wrap: wrap;
    gap: 50px;
    max-width: 1200px;
    margin: 0 auto;
}

.contact-info {
    flex: 1;
    min-width: 300px;
}

    .contact-info h2 {
        font-size: 2.5rem;
        margin-bottom: 20px;
    }

.info-row {
    display: flex;
    align-items: center;
    gap: 20px;
    margin-bottom: 30px;
    font-size: 1.1rem;
}

    .info-row i {
        color: var(--primary-gold);
        font-size: 1.5rem;
    }

.form-box {
    flex: 1;
    min-width: 300px;
    background: var(--off-white);
    padding: 40px;
    border-radius: 10px;
}

    .form-box input, .form-box textarea {
        width: 100%;
        padding: 15px;
        margin-bottom: 20px;
        border: 1px solid #ddd;
        border-radius: 5px;
        font-family: inherit;
    }

.submit-btn {
    width: 100%;
    padding: 15px;
    background: var(--primary-red);
    color: var(--white);
    border: none;
    font-weight: 700;
    cursor: pointer;
    transition: 0.3s;
}

    .submit-btn:hover {
        background: var(--dark-charcoal);
    }

/* --- FOOTER --- */
footer {
    background: var(--off-white);
    padding: 80px 5% 30px 5%;
    color: var(--text-grey);
}

.footer-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 50px;
    max-width: 1400px;
    margin: 0 auto;
    margin-bottom: 50px;
}

.footer-col h3 {
    color: var(--primary-red);
    margin-bottom: 25px;
    font-size: 1.2rem;
}

.footer-col p {
    margin-bottom: 15px;
    font-size: 0.9rem;
}

.footer-col i {
    color: var(--primary-gold);
    margin-right: 10px;
}

.footer-col li {
    margin-bottom: 10px;
}

.footer-col a:hover {
    color: var(--primary-red);
}

.footer-bottom {
    text-align: center;
    border-top: 1px solid #ddd;
    padding-top: 30px;
    font-size: 0.8rem;
}

/* --- RESPONSIVE --- */
@media (max-width: 968px) {
    .intro-split {
        flex-direction: column;
    }

    .split-text {
        padding: 60px 30px;
    }

    .nav-links {
        display: none;
    }

    .milestone-item {
        flex-direction: column;
        text-align: center;
    }

    .large-number {
        font-size: 5rem;
        top: 10px;
        right: 10px;
    }
}
/* --- Right Column: Query Form --- */
.contact-form h2 {
    margin-bottom: 20px;
    color: #333;
    font-size: 28px;
    border-bottom: 2px solid #0056b3;
    display: inline-block;
    padding-bottom: 5px;
}

.form-group {
    margin-bottom: 20px;
}

    .form-group label {
        display: block;
        margin-bottom: 8px;
        font-weight: 600;
        color: #444;
    }

    .form-group input,
    .form-group textarea {
        width: 100%;
        padding: 12px;
        border: 1px solid #ccc;
        border-radius: 5px;
        font-size: 16px;
        transition: border-color 0.3s;
    }

        .form-group input:focus,
        .form-group textarea:focus {
            border-color: #0056b3;
            outline: none;
        }

    .form-group textarea {
        height: 150px;
        resize: vertical;
    }

.submit-btn {
    background-color: #0056b3;
    color: white;
    border: none;
    padding: 12px 30px;
    font-size: 18px;
    border-radius: 5px;
    cursor: pointer;
    transition: background-color 0.3s;
    width: 100%;
}

    .submit-btn:hover {
        background-color: #004494;
    }

/* Responsive Design */
@media (max-width: 768px) {
    .contact-wrapper {
        grid-template-columns: 1fr; /* Stack columns on mobile */
        padding: 20px;
    }
}

.form-container {
    max-width: 500px;
    margin: 0 auto;
    background-color: white;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.form-header {
    text-align: center;
    margin-bottom: 30px;
}

    .form-header h2 {
        color: #333;
        font-weight: 700;
    }

.form-group {
    margin-bottom: 20px;
}

.control-label {
    font-weight: 600;
    color: #555;
}

.form-control {
    border-radius: 5px;
    border: 1px solid #ddd;
    padding: 12px;
    transition: border-color 0.3s;
}

    .form-control:focus {
        border-color: #4e73df;
        box-shadow: 0 0 0 0.2rem rgba(78, 115, 223, 0.25);
    }

.btn-primary {
    background-color: #4e73df;
    border-color: #4e73df;
    font-weight: 600;
    padding: 12px 20px;
    transition: all 0.3s;
}

    .btn-primary:hover {
        background-color: #2e59d9;
        border-color: #2653d4;
        transform: translateY(-2px);
        box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    }

/* Notification Popup Styles */
.notification-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 1000;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s, visibility 0.3s;
}

    .notification-overlay.show {
        opacity: 1;
        visibility: visible;
    }

.notification-popup {
    background-color: white;
    padding: 40px;
    border-radius: 10px;
    max-width: 500px;
    width: 90%;
    text-align: center;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
    transform: scale(0.7);
    transition: transform 0.3s;
}

.notification-overlay.show .notification-popup {
    transform: scale(1);
}

.notification-icon {
    font-size: 60px;
    color: #28a745;
    margin-bottom: 20px;
}

.notification-title {
    font-size: 24px;
    font-weight: 600;
    margin-bottom: 15px;
    color: #333;
}

.notification-message {
    font-size: 16px;
    color: #666;
    margin-bottom: 25px;
}

.close-notification {
    background-color: #4e73df;
    color: white;
    border: none;
    padding: 12px 25px;
    border-radius: 5px;
    cursor: pointer;
    font-weight: 600;
    transition: background-color 0.3s;
}

    .close-notification:hover {
        background-color: #2e59d9;
    }

.loading-spinner {
    display: none;
    width: 20px;
    height: 20px;
    border: 3px solid rgba(255, 255, 255, 0.3);
    border-radius: 50%;
    border-top-color: #fff;
    animation: spin 1s ease-in-out infinite;
    margin-right: 10px;
}

@keyframes spin {
    to {
        transform: rotate(360deg);
    }
}

.required-field {
    color: #e74a3b;
}

table {
    width: 100%;
    border-collapse: collapse;
    margin-bottom: 20px;
}

th, td {
    border: 1px solid #ddd;
    padding: 12px;
    text-align: left;
}

th {
    background-color: #f2f2f2;
    font-weight: bold;
}

.additional-info {
    margin-top: 30px;
}

.info-item {
    margin-bottom: 10px;
